home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_11_12 / schumann / makefile < prev   
Encoding:
Makefile  |  1993-10-09  |  312 b   |  21 lines

  1. #
  2. #  Listing 3
  3. #
  4. #  MAKEFILE--
  5. #
  6. #      Borland MAKE file for CLIP.C and driver program.
  7. #
  8. #      Mark W. Schumann, September 1993
  9. #      Use freely.
  10. #
  11.  
  12. main.exe: main.obj clip.obj
  13.  tlink /m/v/L\c5\lib main clip
  14.  
  15. main.obj: main.prg
  16.  clipper main /m/n
  17.  
  18. .c.obj:
  19.  bcc -c -ml -I\c5\include{ $<}
  20.  
  21.